home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / ddjcomp.lha / hstest / lib / quit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-06-02  |  139 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. quit(s,a1,a2,a3,a4,a5,a6,a7,a8,a9)
  4. char *s;
  5. {
  6.     fprintf(stderr,s,a1,a2,a3,a4,a5,a6,a7,a8,a9);
  7.     exit(1);
  8. }
  9.